home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 Extra / Chip_Extra_1999.iso / share / aktuell / mimarzip / m8vcs99.exe / MimarSinan ACE Wrapper (ACE) / ace12b / UNACESRC / UAC_CRC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-07-03  |  278 b   |  21 lines

  1. #ifndef __uac_crc_h
  2. #define __uac_crc_h
  3.  
  4.  
  5. #include "declare.h"
  6.  
  7. #define CRC_MASK 0xFFFFFFFFL
  8. #define CRCPOLY  0xEDB88320L
  9.  
  10.  
  11. extern ULONG crctable[256];
  12. extern ULONG rd_crc;
  13.  
  14.  
  15. ULONG getcrc(ULONG crc, UCHAR * addr, INT len);
  16. void  make_crctable(void);
  17.  
  18.  
  19. #endif /* __uac_crc_h */
  20.  
  21.